home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / COMPNENT / SAWIN95 / SAWIN95.PAS < prev    next >
Pascal/Delphi Source File  |  1996-11-02  |  414b  |  21 lines

  1. unit SAWin95;
  2.  
  3. interface
  4.  
  5. uses Classes,    DsgnIntf,   SysUtils,
  6.      AnimCtl,    ChkList,    ChkStrEd,   
  7.      SysHot,     TrayIcon;
  8.  
  9. procedure Register;
  10.  
  11. implementation
  12.  
  13.  
  14. procedure Register;
  15. begin
  16.   RegisterComponents('Win95', [TAnimation,      TCheckListBox, TSysHotKey, TTrayIcon]);
  17.   RegisterPropertyEditor(TypeInfo(TStrings), TCheckListBox, 'Items', TCheckStringListProperty);
  18. end;
  19.  
  20. end.
  21.